home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-310.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  83 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12428);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CAN-2003-0853", "CAN-2003-0854");
  13.  
  14.  name["english"] = "RHSA-2003-310: fileutils";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated fileutils packages that close a potential denial of service
  21.   vulnerability are now available.
  22.  
  23.   The fileutils package contains several basic system utilities. One of
  24.   these utilities is the "ls" program, which is used to list information
  25.   about files and directories.
  26.  
  27.   Georgi Guninski discovered a memory starvation denial of service
  28.   vulnerability in the ls program. It is possible to make ls allocate a
  29.   huge amount of memory by specifying certain command line arguments. This
  30.   vulnerability is remotely exploitable through services like wu-ftpd, which
  31.   pass user arguments to ls. The Common Vulnerabilities and Exposures
  32.   project (cve.mitre.org) has assigned the name CAN-2003-0854 to this issue.
  33.  
  34.   A non-exploitable integer overflow in ls has been discovered. It is
  35.   possible to make ls crash by specifying certain command line arguments.
  36.   This vulnerability is remotely exploitable through services like wu-ftpd,
  37.   which pass user arguments to ls. The Common Vulnerabilities and Exposures
  38.   project (cve.mitre.org) has assigned the name CAN-2003-0853 to this issue.
  39.  
  40.   Users are advised to update to these erratum packages, which contain
  41.   backported security patches that correct these vulnerabilities.
  42.  
  43.   These packages also add support for the O_DIRECT flag, which controls the
  44.   use of synchronous I/O on file systems such as OCFS.
  45.  
  46.  
  47.  
  48.  
  49. Solution : http://rhn.redhat.com/errata/RHSA-2003-310.html
  50. Risk factor : High';
  51.  
  52.  script_description(english:desc["english"]);
  53.  
  54.  summary["english"] = "Check for the version of the fileutils packages";
  55.  script_summary(english:summary["english"]);
  56.  
  57.  script_category(ACT_GATHER_INFO);
  58.  
  59.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  60.  family["english"] = "Red Hat Local Security Checks";
  61.  script_family(english:family["english"]);
  62.  
  63.  script_dependencies("ssh_get_info.nasl");
  64.  
  65.  script_require_keys("Host/RedHat/rpm-list");
  66.  exit(0);
  67. }
  68.  
  69. include("rpm.inc");
  70. if ( rpm_check( reference:"fileutils-4.1-10.4", release:"RHEL2.1") )
  71. {
  72.  security_hole(0);
  73.  exit(0);
  74. }
  75.  
  76. if ( rpm_exists(rpm:"fileutils-", release:"RHEL2.1") )
  77. {
  78.  set_kb_item(name:"CAN-2003-0853", value:TRUE);
  79.  set_kb_item(name:"CAN-2003-0854", value:TRUE);
  80. }
  81.  
  82. set_kb_item(name:"RHSA-2003-310", value:TRUE);
  83.